
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    z-index: 1;
}

.careers-main {
  margin-top: 11vh;
  width: 100%;
  padding: 5% 10%;
  background-color: #ffffff;
  color: #000000;
  font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
}

.careers-main-title {
  font-family: 'From the Stars W01 Regular', sans-serif;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: 200;
  text-align: center;
}

.careers-title {
  font-family: 'From the Stars W01 Regular', sans-serif;
  font-size: 1.6rem;
  color: #E18A07;
  font-weight: 200;
}


.job-card {
  border: 1px solid #333;
  margin-bottom: 1rem;
  background: #ffffff;
  overflow: hidden;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  cursor: pointer;
  background: #ffffff;
}

.product-header-container{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product-header-img{
  width: 30%;
  margin-right: 1%;
}

.toggle-icon {
  font-size: 1.8rem;
  color: #454545;
  transition: transform 0.3s ease;
}

.job-body {
  display: none;
  padding: 1.5rem;
}

.job-body.active {
  display: block;
}

.job-meta p {
  font-size: 1rem;
  margin: 0.3rem 0;
  color: #000000;
}

.job-section {
  margin: 2rem 0;
}

.job-section h2 {
  font-size: 1.5rem;
  font-weight: 200;
  color: #E18A07;
  margin-bottom: 1rem;
}

.job-section p, 
.job-section ul {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}

.job-section a{
    color: #E18A07;
}

.job-section ul {
  padding-left: 1.2rem;
}

.apply-btn-container {
  margin-top: 1%;
}

.apply-btn-container .button {
  display: inline-block;
  padding: 1% 2%;
  border: 2px solid #E18A07;
  color: #000000;
  background: transparent;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 2%;
}

.apply-btn-container .button:hover {
  background: #E18A07;
  color: #ffffff;
}


@media (max-width: 768px) {
    .careers-main{
        margin-top: 11vh;
        padding: 5% 4%;
    }

    .careers-main-content h1{
        font-size: 1.1rem;
    }

    .job-header {
        padding: 0.6rem;
    }

    .product-header-container{
        flex-direction: column;
    }

    .product-header-img{
        width: 60%;
        margin-right: 0;
    }

    .job-body{
        padding: 1rem;
    }

    .job-section h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;;
    }

    .apply-btn-container {
        margin: 2%;
    }

    .apply-btn-container .button {
        padding: 2% 4%;
        font-size: 1.1rem;
        margin-bottom: 2%;
        margin-top: 2%;
    }


}
